home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Scene Storm
/
Scene Storm - Volume 1.iso
/
coding
/
c
/
unix
/
src
/
getwd.c
< prev
next >
Wrap
C/C++ Source or Header
|
1992-08-15
|
129b
|
9 lines
#include "amiga.h"
#include <sys/param.h>
char *getwd (char *pathname)
{
chkabort();
return getcwd(pathname, MAXPATHLEN);
}